home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 24
/
Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso
/
Aminet
/
comm
/
net
/
SSH.lha
/
README.AMIGA
next >
Wrap
Text File
|
1998-02-25
|
1KB
|
39 lines
This is an Amiga version of Secure Shell version 1.2.22.
You need at least a 68020 CPU and ixemul.library to run the binaries.
ssh-add, ssh-agent, make-ssh-known-hosts and sshd are not included as
binaries because ssh-agent and sshd don't work.
NOTE 1: You need a large stack. Make it 100000 and you're safe.
NOTE 2: scp expects ssh to be in usr:bin to work
Nothing has been removed from the original sources, so a compile for UNIX
can be done after running the configure-script as usual. I've only added the
things related to "#ifdef amigaos" and "#ifndef amigaos".
The makefiles have been altered by me personally. They will not reappear like
that once you run configure again.
Usage
~~~~~
If you are connected to a TCP/IP-network, internet for example, you can use
ssh to login to a remote host where you have an account.
To login as user "david" on host "fish.pond.se" you type:
ssh -l david fish.pond.se
With scp you can copy files between accounts:
scp /Workbench/WBStartup/VirusZ david@fish.pond.se:~/
The above copies Workbench:WBStartup/VirusZ to the homedir of user david at
the machine fish.pond.se. Note that you need to write paths in UNIX-style
because scp interprets Workbench: as a remote host "Workbench".
Changes
~~~~~~~
1998-02-25: Typical! Just when I made the initial upload it struck me that
this file isn't very helpful to those who know nothing about ssh.
Therefore, I added some guidance.
/Johan Eriksson, johane@lysator.liu.se